home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Tools / Code folding / removeCodeFolding.script < prev    next >
Encoding:
Text File  |  2001-06-19  |  492 b   |  26 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. /**
  5. @Tool: removeCodeFolding~removes all parent child relationships in 
  6. the active editor. 
  7. @EndTool: 
  8. @Summary: removeCodeFolding~removes all code folding from the active editor 
  9. */
  10.  
  11. var gOutput = getOutput();
  12.  
  13. function DoCommand()
  14. {
  15.   var editor = getActiveEditor();
  16.   if (editor)
  17.   {
  18.     var lines = editor.getLines();
  19.     lines.promoteAllLines();
  20.     lines.update("Remove Code Folding");
  21.   }
  22. }
  23.  
  24. !!/Script
  25.  
  26.